home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / hdf / unix / examples.lha / examples / util / hdf24to8 / Makefile < prev   
Encoding:
Makefile  |  1991-10-23  |  362 b   |  24 lines

  1. # @(#)Makefile  07/19/90
  2. #
  3. #
  4. # Note: change these paths to conform to your system:
  5.  
  6. MACHINE=SUN
  7.  
  8. BINDIR = /stg1/dilg/testr5/bin
  9. FILESDIR = ../../files
  10. RM      = rm -f
  11.  
  12. getfiles:
  13.     cp ${FILESDIR}/corn.r24.Z .
  14.     cp ${FILESDIR}/head.r24.Z .
  15.     cp ${BINDIR}/hdf24to8 .
  16.     uncompress corn.r24.Z
  17.     uncompress head.r24.Z
  18.  
  19. cleanup:
  20.     -${RM} *.r24
  21.     -${RM} *.r8
  22.     -${RM} hdf24to8
  23.  
  24.